home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950528-19950726 / 000317_news@columbia.edu_Tue Jul 11 04:56:43 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06306
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 11 Jul 1995 17:36:15 -0400
  3. Received: by apakabar.cc.columbia.edu id AA29783
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 11 Jul 1995 17:36:14 -0400
  5. Path: news.columbia.edu!panix!news.mathworks.com!gatech!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: MSKERMIT 3.14 and TCP/IP stacks from IBM
  9. Message-Id: <1995Jul11.105643.55821@cc.usu.edu>
  10. Date: 11 Jul 95 10:56:43 MDT
  11. References: <3tu53d$jf6@news.iastate.edu>
  12. Organization: Utah State University
  13. Lines: 59
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3tu53d$jf6@news.iastate.edu>, zollner@iastate.edu writes:
  17. > I have read all the documentation files in mskermit.zip. It seems
  18. > that MSKERMIT 3.14 should be able to use an existing TCP/IP stack, but 
  19. > there are no specific instructions how to find the stack. (I 
  20. > don't know which interrupt is used by my stack.) Particularly,
  21. > I am interested in telling MSKERMIT to use the IBM TCP/IP stack.
  22. > Specifically, I am interested in the following:
  23. > 1) Can MSKERMIT run over the IBM TCP/IP for DOS stack ?
  24.  
  25.     Not directly, for two reasons.
  26.     1. IBM's stack is for OS/2 protected mode programs only (we 
  27. presume that's the stack you are using), and that has nothing to do with
  28. real mode DOS work.
  29.     2. One does not "just use" an external protocol stack because
  30. such items require (by their design) proprietary interfacing procedures
  31. to be built into the application. MS-DOS Kermit can't use such methods.
  32.  
  33. > 2) Can MSKERMIT run over the stack provided by the TCP/IP DOS/Windows
  34. >    access kit 2.0, together with the TCP/IP for OS/2 2.0, and OS/2 2.1.
  35.  
  36.     MS-DOS Kermit has its own internal TCP/IP stack which works rather
  37. well. But that is for a real mode environment, not within another o/s.
  38. The answer is no.
  39.  
  40. > 3) Can MSKERMIT run over the stack provided by the TCP/IP DOS access kit
  41. >    included in WARP CONNECT ?
  42.  
  43.     See above. No.
  44.  
  45. > Obviously, 3) would be the best solution for me and 1) the worst. But I
  46. > am willing to settle for anything. If you would like to know some reasons
  47. > why I am running MSKERMIT on OS/2 (and not C-Kermit), I suggest you take
  48. > a look at the OS/2 section in KERMIT.BWR.
  49. > I tried 3), but had the following errors:
  50. >  -- unknown address for port, assuming \x03F8
  51. >  -- unknown packet driver, assuming BIOS1.
  52. > What do these messages mean ?
  53.  
  54.     It means you tried to access the serial port and OS/2 denied access
  55. to the port. Please see your OS/2 documentation about revealing serial ports
  56. to DOS applications.
  57.  
  58. > If 1-3 all fail, there is another possibility:
  59. > 4) Can I run MSKERMIT using the INT 14h interceptor included in the
  60. >    IBM TCP/IP 2.0 DOS access kit together with the TCP/IP 2.0 base for OS/2
  61. >    and OS/2 2.1.
  62.  
  63.     Worth a try. Since you have the material you get to find the answer.
  64. SET PORT BIOS1 is the command to give to MSK.
  65.  
  66. > 5) Is such an INT 14h interceptor included with WARP CONNECT ?
  67.  
  68.     Dunno. I don't have Warp; I have only v2.1. If you have Warp then
  69. you also have the answer.
  70.     Joe D.